We can facilitate the autostarting of Wamp in the system tray by disabling UAC, which will eliminate the need to approve WAMP each time the system starts in order for the tray icon to be present in the system tray.
Please note: Exact instructions for how to autostart Wamp server will not be given, however, you could peruse this .bat file which was created to automate the entire process. Do not run the .bat file if your system already has WAMP installed, as it will cause issues. The most relevant lines in the file to pay attention to autostart Wamp are:
:: Generate and execute another batch file to start WampServer Manager
set "generatedBatchFile=RunWampServer.bat"
(
echo @echo off
echo start "" "C:\wamp64\wampmanager.exe"
) > "%generatedBatchFile%"
echo Batch file '%generatedBatchFile%' has been created.
:: Copy the generated batch file to the startup folder
set "startupFolder=%APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup"
copy "%generatedBatchFile%" "%startupFolder%"
echo Batch file '%generatedBatchFile%' has been copied to the startup folder.